
@import url("./nav.css");
@import url("./footer.css");
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html, body{
    height: 100%;
    width: 100%;
}



.main{
    height:max-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:space-around;
    width:100%;
    border-radius: 10px; 
}

.one{
    
    height:max-content;
    width:500px;
}

.one h2,h3{
font-family:cursive;
color: #2a2f52;

}

/* p{
    font-weight: bold;
} */

.one a{
    text-decoration: none;
    color: #333a65;
}



/* Conatct page div form */
.contform{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap:10px;
    background-color: #f8f9fa ;
    border: 1px solid #dee2e6;
    padding:10px;
    
    
}

.contform label{
    display: block;
    margin-top: 8px;
    
}


.inptname,
.inptemail,
.inptnumber,
textarea{
    width:500px;
    padding: 10px;
    border:1px solid #e3d9bf;
    outline-color:#e3d9bf;
    border-radius: 5px;
    background-color:white;
}


.formbtn{
    margin-left: 15px;
    width: 125px;
    display:inline-block;
    color: #002147;
    font-weight: bold;
    font-size: 15px;
    background-color: #fea116;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    margin-top: 10px;
    cursor: pointer;
}

.formbtn:hover{
    color:orange;
    background-color:white;
    box-shadow: 2px 2px 10px orange, -2px -2px 10px orange;

}

.one a:hover{
    text-decoration: underline;
    color: purple;
}



@media(max-width:523px){
    .inptname,
.inptemail,
.inptnumber,
textarea{
    width:300px;}
    
    .contform{
        margin-top: 30px;
    }

}



